www.gusucode.com > VC++ 实用编程100个实例的源代码-源码程序 > VC++ 实用编程100个实例的源代码-源码程序/code/实例51/Text.cpp

    //Download by http://www.NewXing.com
#include <conio.h>

void main(void)
{
	textcolor(YELLOW+BLINK);
	textbackground(11);
	gotoxy(35,15);
	cprintf("This is a test");
	getch();
}